home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Informant Complete 1995 - 2000
/
Delphi Informant Complete 1995 to 2000.iso
/
Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar
/
1995
/
OCT
/
CJ9510
/
cards.dpr
< prev
next >
Wrap
Text File
|
1995-08-21
|
240b
|
15 lines
program Cards;
uses
Forms,
Main in 'MAIN.PAS' {Form1},
About in 'ABOUT.PAS' {AboutBox};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TAboutBox, AboutBox);
Application.Run;
end.